search string array python

31

some_list = ['abc-123', 'def-456', 'ghi-789', 'abc-456']
if any("abc" in s for s in some_list):
    # whatever
my_list = ['abc-123', 'def-456', 'ghi-789', 'abc-456']

Comments

Submit
0 Comments